From 0f32af075d67053f45d2f478e39467c1bf814d18 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 15 Jul 2008 17:58:39 +0100 Subject: [PATCH] x86: Report TSC skew on boot at higher log level. Signed-off-by: Keir Fraser --- xen/arch/x86/smpboot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arch/x86/smpboot.c b/xen/arch/x86/smpboot.c index 6721b9f6c5..536ec12d5a 100644 --- a/xen/arch/x86/smpboot.c +++ b/xen/arch/x86/smpboot.c @@ -195,7 +195,7 @@ static void __init synchronize_tsc_bp (void) unsigned int one_usec; int buggy = 0; - printk(KERN_INFO "checking TSC synchronization across %u CPUs: ", num_booting_cpus()); + printk("checking TSC synchronization across %u CPUs: ", num_booting_cpus()); /* convert from kcyc/sec to cyc/usec */ one_usec = cpu_khz / 1000; @@ -274,7 +274,7 @@ static void __init synchronize_tsc_bp (void) if (tsc_values[i] < avg) realdelta = -realdelta; - printk(KERN_INFO "CPU#%d had %ld usecs TSC skew, fixed it up.\n", i, realdelta); + printk("CPU#%d had %ld usecs TSC skew, fixed it up.\n", i, realdelta); } sum += delta; -- 2.30.2